home *** CD-ROM | disk | FTP | other *** search
/ Programming a Multiplayer FPS in DirectX / Programming a Multiplayer FPS in DirectX (Companion CD).iso / DirectX / dxsdk_oct2004.exe / dxsdk.exe / Samples / C++ / DirectInput / DIConfig / flexmsg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-09-27  |  1.0 KB  |  36 lines

  1. //-----------------------------------------------------------------------------
  2. // File: flexmsg.h
  3. //
  4. // Desc: Contains definitions of private messages used by the UI.
  5. //
  6. // Copyright (C) Microsoft Corporation. All Rights Reserved.
  7. //-----------------------------------------------------------------------------
  8.  
  9. #ifndef __FLEXMSG_H__
  10. #define __FLEXMSG_H__
  11.  
  12.  
  13. #define WM_CFGUIRESET (WM_USER + 6)
  14.  
  15. #ifndef WM_FLEXMSGBASE
  16. #define WM_FLEXMSGBASE    (WM_USER + 7)
  17. #endif
  18.  
  19.  
  20. #define WM_GETFLEXWND     (WM_FLEXMSGBASE + 0)
  21. #define WM_FLEXTREENOTIFY (WM_FLEXMSGBASE + 1)
  22. #define WM_FLEXVSCROLL    (WM_FLEXMSGBASE + 2)
  23. #define WM_FLEXHSCROLL    (WM_FLEXMSGBASE + 3)
  24. #define WM_FLEXLISTBOX    (WM_FLEXMSGBASE + 4)
  25. #define WM_FLEXCOMBOBOX   (WM_FLEXMSGBASE + 5)
  26. #define WM_FLEXCHECKBOX   (WM_FLEXMSGBASE + 6)
  27. #define WM_DIRENDER       (WM_FLEXMSGBASE + 7)
  28. #define WM_UNHIGHLIGHT    (WM_FLEXMSGBASE + 8)
  29.  
  30. #ifndef WM_MOUSEWHEEL
  31. #define WM_MOUSEWHEEL                   0x020A
  32. #endif
  33.  
  34.  
  35. #endif //__FLEXMSG_H__
  36.